
Research
npm Malware Targets Telegram Bot Developers with Persistent SSH Backdoors
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
yaschema-api
Advanced tools
Yet another API. Schema-first API modeling and validation for TypeScript, built on yaschema.
This package is almost entirely TypeScript types, except for a few configuration functions and utilities. Yaschema-APIs have routeType
metadata, which is helpful for directing traffic to different sets of servers. See setUrlBaseForRouteType
and setDefaultUrlBase
.
Support for handling yaschema-api requests server side and for making yaschema-api requests either client or server side, is handled by other packages.
We love TypeScript and use it pretty much everywhere. We use it for our React Native app, our React web app, as well as for our server.
We built yaschema-api as part of our type and API spec system, to be TypeScript first -- and to still conveniently support code generation and OpenAPI spec generation as needed.
Because yaschema-api leverages yaschema, you can define both runtime and compile-time validated types with a single definition.
export const POST = makeHttpApi({
method: 'POST',
routeType: 'rest',
url: '/ping',
isSafeToRetry: true,
schemas: {
request: {
body: schema.object({
echo: schema.string().allowEmptyString().optional()
})
},
successResponse: {
status: schema.number(StatusCodes.OK),
body: schema.string()
}
}
});
Thanks for checking it out. Feel free to create issues or otherwise provide feedback.
Be sure to check out our other TypeScript OSS projects as well.
FAQs
Yet another API
The npm package yaschema-api receives a total of 47 weekly downloads. As such, yaschema-api popularity was classified as not popular.
We found that yaschema-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Malicious npm packages posing as Telegram bot libraries install SSH backdoors and exfiltrate data from Linux developer machines.
Security News
pip, PDM, pip-audit, and the packaging library are already adding support for Python’s new lock file format.
Product
Socket's Go support is now generally available, bringing automatic scanning and deep code analysis to all users with Go projects.